home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Mark Pilgrim / Mousebroken 1.0.1 / source / Mousebroken source ƒ / init code / show init.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-30  |  1.4 KB  |  41 lines  |  [TEXT/KAHL]

  1. /**********************************************************************\
  2.  
  3. File:        show init.h
  4.  
  5. Purpose:    This is the header file for show init.c
  6.  
  7. Note:        This file was not written by the authors of Mousebroken
  8.             and is not subject to the terms of the GNU General
  9.             Public License.
  10.             
  11.  
  12. Mousebroken -=- your computer isn't truly broken until it's mousebroken
  13. Copyright (C) 1993 Mark Pilgrim
  14.  
  15. This program is free software; you can redistribute it and/or modify
  16. it under the terms of the GNU General Public License as published by
  17. the Free Software Foundation; either version 2 of the License, or
  18. (at your option) any later version.
  19.  
  20. This program is distributed in the hope that it will be useful,
  21. but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. GNU General Public License for more details.
  24.  
  25. You should have received a copy of the GNU General Public License
  26. along with this program in a file named "GNU General Public License".
  27. If not, write to the Free Software Foundation, 675 Mass Ave,
  28. Cambridge, MA 02139, USA.
  29.  
  30. \**********************************************************************/
  31.  
  32. #define        GOOD_ICON                -4064
  33. #define        BAD_ICON                129
  34.  
  35. void ShowIconFamily(short);
  36. void GetIconRect(register Rect* iconRect);
  37. Handle ChooseIcon(short iconId, short* suggestedDepth);
  38.  
  39. #define    ShowBadICON()    ShowIconFamily(BAD_ICON)
  40. #define    ShowGoodICON()    ShowIconFamily(GOOD_ICON)
  41.